blob: 273158b5964595c7dafeebc0a113cd3862a71906 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#include "gamebuilder.h"
#include "game.h"
#include "gamestate.h"
#include "parser.tab.h"
typedef void *yyscan_t;
void yylex_init( yyscan_t * );
void yylex_destroy( yyscan_t );
void yyparse( yyscan_t, GameBuilder &bld );
void yyset_in( FILE *, yyscan_t );
int main( int argc, char *argv[] )
{
yyscan_t scanner;
GameBuilder bld;
yylex_init( &scanner );
FILE *in = fopen( argv[1], "rb" );
yyset_in( in, scanner );
yyparse( scanner, bld );
yylex_destroy( scanner );
fclose( in );
Game *pGame = bld.getGame();
GameState gs( pGame );
gs.init();
gs.gotoSituation("stuff");
gs.gotoSituation("start");
return 0;
}
|